400
How can I change the first visible date in the chart
exgantt1.Chart.LevelCount = 2;
exgantt1.Chart.FirstVisibleDate = Convert.ToDateTime("1/1/2002",System.Globalization.CultureInfo.GetCultureInfo("en-US"));

399
How can I scroll or ensure that a specified date time is visible in the chart
exgantt1.Chart.LevelCount = 2;
exgantt1.Chart.FirstVisibleDate = Convert.ToDateTime("1/1/2002",System.Globalization.CultureInfo.GetCultureInfo("en-US"));

398
How can I scroll or ensure that a specified date time is visible to the right side of the chart or control
exgantt1.Chart.LevelCount = 2;
exgantt1.Chart.ScrollTo(Convert.ToDateTime("1/1/2002",System.Globalization.CultureInfo.GetCultureInfo("en-US")),2);

397
How can I scroll or ensure that a specified date time is visible
exgantt1.Chart.LevelCount = 2;
exgantt1.Chart.ScrollTo(Convert.ToDateTime("1/1/2002",System.Globalization.CultureInfo.GetCultureInfo("en-US")),2);

396
How can I show or hide the the tooltip being shown when the user scrolls the chart
exgantt1.Chart.ToolTip = "";

395
How can I change the format of the tooltip when the user scrolls the chart

exgantt1.Chart.ToolTip = "ToolTip: <b><%dddd%></b>";

394
How can I hide the chart's scroll bar
exgantt1.Chart.ScrollBar = false;

393
How can I specify the first day of the week

exgantt1.Chart.LevelCount = 2;
exgantt1.Chart.FirstWeekDay = exontrol.EXGANTTLib.WeekDayEnum.exMonday;

392
How do I change the AM or PM shortcuts in the chart's header

exgantt1.Chart.UnitWidth = 64;
exgantt1.Chart.AMPM = "A P";
exontrol.EXGANTTLib.Level var_Level = exgantt1.Chart.get_Level(0);
	var_Level.Label = "<%h%> <%AM/PM%>";
	var_Level.Unit = exontrol.EXGANTTLib.UnitEnum.exHour;

391
How do I change the name for the months, being displayed in the chart's header

exgantt1.Chart.UnitWidth = 64;
exgantt1.Chart.MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie";
exontrol.EXGANTTLib.Level var_Level = exgantt1.Chart.get_Level(0);
	var_Level.Label = "<b><%mmmm%></b>";
	var_Level.Unit = exontrol.EXGANTTLib.UnitEnum.exMonth;

390
How do I change the name for the week days, being displayed in the chart's header

exgantt1.Chart.UnitWidth = 64;
exgantt1.Chart.WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata";
exgantt1.Chart.get_Level(0).Label = "<b><%mm%></b>/<%dddd%>";

389
How do I access a level in the chart's header

exgantt1.Chart.UnitWidth = 64;
exgantt1.Chart.get_Level(0).Label = "<b><%mm%></b>/<%dd%>";

388
How can I change the color for the grid lines between the leves in the chart's header

exgantt1.GridLineColor = Color.FromArgb(255,0,0);
exgantt1.Chart.LevelCount = 2;

387
How can I show or hide the grid lines between the leves in the chart's header

exgantt1.GridLineColor = Color.FromArgb(255,0,0);
exontrol.EXGANTTLib.Chart var_Chart = exgantt1.Chart;
	var_Chart.LevelCount = 2;
	var_Chart.get_Level(0).DrawTickLines = false;
	var_Chart.get_Level(1).DrawTickLines = false;

386
How do I change the foreground color for the chart's header

exgantt1.Chart.ForeColorLevelHeader = Color.FromArgb(255,0,0);

385
How do I change the background color for the chart's header

exgantt1.Chart.BackColorLevelHeader = Color.FromArgb(255,0,0);

384
How do I specify the chart's foreground color
exgantt1.Chart.ForeColor = Color.FromArgb(255,0,0);

383
How do I specify the chart's background color

exgantt1.Chart.BackColor = Color.FromArgb(255,0,0);

382
How do I put a picture on the center of the chart

exgantt1.Chart.Picture = (exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exgantt1.Chart.PictureDisplay = exontrol.EXGANTTLib.PictureDisplayEnum.MiddleCenter;

381
How do I resize/stretch a picture on the chart's background

exgantt1.Chart.Picture = (exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exgantt1.Chart.PictureDisplay = exontrol.EXGANTTLib.PictureDisplayEnum.Stretch;

380
How do I put a picture on the chart's center right bottom side

exgantt1.Chart.Picture = (exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exgantt1.Chart.PictureDisplay = exontrol.EXGANTTLib.PictureDisplayEnum.LowerRight;

379
How do I put a picture on the chart's center left bottom side

exgantt1.Chart.Picture = (exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exgantt1.Chart.PictureDisplay = exontrol.EXGANTTLib.PictureDisplayEnum.LowerLeft;

378
How do I put a picture on the chart's center top side

exgantt1.Chart.Picture = (exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exgantt1.Chart.PictureDisplay = exontrol.EXGANTTLib.PictureDisplayEnum.UpperCenter;

377
How do I put a picture on the chart's right top corner

exgantt1.Chart.Picture = (exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exgantt1.Chart.PictureDisplay = exontrol.EXGANTTLib.PictureDisplayEnum.UpperRight;

376
How do I put a picture on the chart's left top corner

exgantt1.Chart.Picture = (exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exgantt1.Chart.PictureDisplay = exontrol.EXGANTTLib.PictureDisplayEnum.UpperLeft;

375
How do I put a picture on the chart's background

exgantt1.Chart.Picture = (exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);

374
How to specify the width for the left or side pane

exgantt1.Chart.set_PaneWidth(false,128);

373
How do I display the header of the chart using multiple levels, lines

exgantt1.Chart.LevelCount = 2;

372
How do change the width of the chart's area
exgantt1.Chart.set_PaneWidth(true,256);

371
How do I show or hide the control's chart area
exgantt1.Chart.set_PaneWidth(true,0);

370
How do I access the chart's area of the control
exgantt1.Chart.set_PaneWidth(false,64);

369
How do I change the control's border, using your EBN files

exgantt1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exgantt1.Appearance = (exontrol.EXGANTTLib.AppearanceEnum)0x1000000;

368
Can I change the default border of the tooltip, using your EBN files

exgantt1.ToolTipDelay = 1;
exgantt1.ToolTipWidth = 364;
exgantt1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exgantt1.set_Background32(exontrol.EXGANTTLib.BackgroundPartEnum.exToolTipAppearance,0x1000000);
(exgantt1.Columns.Add("tootip") as exontrol.EXGANTTLib.Column).ToolTip = "this is a tooltip assigned to a column";

367
Can I change the background color for the tooltip

exgantt1.ToolTipDelay = 1;
exgantt1.ToolTipWidth = 364;
exgantt1.set_Background(exontrol.EXGANTTLib.BackgroundPartEnum.exToolTipBackColor,Color.FromArgb(255,0,0));
(exgantt1.Columns.Add("tootip") as exontrol.EXGANTTLib.Column).ToolTip = "this is a tooltip assigned to a column";

366
Does the tooltip support HTML format

exgantt1.ToolTipDelay = 1;
exgantt1.ToolTipWidth = 364;
(exgantt1.Columns.Add("tootip") as exontrol.EXGANTTLib.Column).ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a <fgcolor=FF0000>column</fgcolor>";

365
Can I change the forecolor for the tooltip

exgantt1.ToolTipDelay = 1;
exgantt1.ToolTipWidth = 364;
exgantt1.set_Background(exontrol.EXGANTTLib.BackgroundPartEnum.exToolTipForeColor,Color.FromArgb(255,0,0));
(exgantt1.Columns.Add("tootip") as exontrol.EXGANTTLib.Column).ToolTip = "this is a tooltip assigned to a column";

364
Can I change the foreground color for the tooltip

exgantt1.ToolTipDelay = 1;
exgantt1.ToolTipWidth = 364;
(exgantt1.Columns.Add("tootip") as exontrol.EXGANTTLib.Column).ToolTip = "<fgcolor=FF0000>this is a tooltip assigned to a column</fgcolor>";

363
How can I merge cells

exgantt1.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines;
exgantt1.MarkSearchColumn = false;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exgantt1.Columns.Add("C3");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("this cell merges the first two columns");
	var_Items.set_CellMerge(h,0,1);
	h = var_Items.AddItem(null);
	var_Items.set_CellCaption(h,1,"this cell merges the last two columns");
	var_Items.set_CellMerge(h,1,2);
	h = var_Items.AddItem("this cell merges the all three columns");
	var_Items.set_CellMerge(h,0,1);
	var_Items.set_CellMerge(h,0,2);
	h = var_Items.AddItem("this draws a divider item");
	var_Items.set_ItemDivider(h,0);

362
How can I merge cells

exgantt1.MarkSearchColumn = false;
exgantt1.TreeColumnIndex = -1;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);
	h = var_Items.AddItem("This is bit of text merges all cells in the item");
	var_Items.set_ItemDivider(h,0);
	var_Items.set_CellHAlignment(h,0,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);

361
How can I specify the width for a splited cell

exgantt1.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exRowLines;
exgantt1.Columns.Add("Single Column");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Split 1");
	object s = var_Items.get_SplitCell(h,0);
	var_Items.set_CellWidth(null,s,64);
	var_Items.set_CellCaption(null,s,"Split 2");
	object s1 = var_Items.get_SplitCell(null,s);
	var_Items.set_CellCaption(null,s1,"Split 3");
	var_Items.set_CellWidth(null,s1,64);

360
How can I split a cell in three parts

exgantt1.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exRowLines;
exgantt1.Columns.Add("Single Column");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Split 1");
	object s = var_Items.get_SplitCell(h,0);
	var_Items.set_CellCaption(null,s,"Split 2");
	object s1 = var_Items.get_SplitCell(null,s);
	var_Items.set_CellCaption(null,s1,"Split 3");

359
How can I add a button aligned to right

exgantt1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exgantt1.Columns.Add("Single Column");
exgantt1.ShowFocusRect = false;
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_ItemDivider(var_Items.AddItem("This is a bit of text being displayed on the entire item"),0);
	object s = var_Items.get_SplitCell(var_Items.AddItem("Split Cell 1.1"),0);
	var_Items.set_CellCaption(null,s,"Split Cell <img>1</img>");
	var_Items.set_CellCaptionFormat(null,s,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);
	var_Items.set_CellHAlignment(null,s,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);
	var_Items.set_CellHasButton(null,s,true);
	var_Items.set_CellWidth(null,s,84);

358
How can I split a cell

exgantt1.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exRowLines;
exgantt1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exgantt1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exgantt1.Columns.Add("Single Column");
exgantt1.ShowFocusRect = false;
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	object s = var_Items.get_SplitCell(var_Items.AddItem("Split Cell 1.1"),0);
	var_Items.set_CellCaption(null,s,"Split Cell <img>1</img>");
	var_Items.set_CellCaptionFormat(null,s,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);
	var_Items.set_CellHAlignment(null,s,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);
	var_Items.set_CellBackColor32(null,s,0x1000000);
	var_Items.set_CellWidth(null,s,84);

357
Can I select an item giving its general position

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.SelectPos = 1;

356
How can I change the color for separator / dividers items

exgantt1.GridLineColor = Color.FromArgb(255,0,0);
exgantt1.MarkSearchColumn = false;
exgantt1.TreeColumnIndex = -1;
exgantt1.ScrollBySingleLine = false;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);
	h = var_Items.AddItem(null);
	var_Items.set_ItemDivider(h,0);
	var_Items.set_ItemDividerLine(h,exontrol.EXGANTTLib.DividerLineEnum.DoubleDotLine);
	var_Items.set_ItemDividerLineAlignment(h,exontrol.EXGANTTLib.DividerAlignmentEnum.DividerCenter);
	var_Items.set_ItemHeight(h,6);
	var_Items.set_SelectableItem(h,false);
	h = var_Items.AddItem("Cell 2");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);

355
How can I add separator - dividers items

exgantt1.MarkSearchColumn = false;
exgantt1.TreeColumnIndex = -1;
exgantt1.ScrollBySingleLine = false;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);
	h = var_Items.AddItem(null);
	var_Items.set_ItemDivider(h,0);
	var_Items.set_ItemDividerLine(h,exontrol.EXGANTTLib.DividerLineEnum.DoubleDotLine);
	var_Items.set_ItemDividerLineAlignment(h,exontrol.EXGANTTLib.DividerAlignmentEnum.DividerCenter);
	var_Items.set_ItemHeight(h,6);
	var_Items.set_SelectableItem(h,false);
	h = var_Items.AddItem("Cell 2");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);

354
Can I change the style of the line being displayed by a divider item

exgantt1.MarkSearchColumn = false;
exgantt1.TreeColumnIndex = -1;
exgantt1.ScrollBySingleLine = false;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);
	h = var_Items.AddItem("This is bit of text that's displayed on the entire item, divider.");
	var_Items.set_ItemDivider(h,0);
	var_Items.set_ItemDividerLine(h,exontrol.EXGANTTLib.DividerLineEnum.DoubleDotLine);
	var_Items.set_CellHAlignment(h,0,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);
	var_Items.set_ItemHeight(h,24);

353
Can I remove the line being displayed by a divider item

exgantt1.MarkSearchColumn = false;
exgantt1.TreeColumnIndex = -1;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);
	h = var_Items.AddItem("This is bit of text that's displayed on the entire item, divider.");
	var_Items.set_ItemDivider(h,0);
	var_Items.set_ItemDividerLine(h,exontrol.EXGANTTLib.DividerLineEnum.EmptyLine);
	var_Items.set_CellHAlignment(h,0,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);

352
How can I display a divider item, merging all cells

exgantt1.MarkSearchColumn = false;
exgantt1.TreeColumnIndex = -1;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);
	h = var_Items.AddItem("This is bit of text that's displayed on the entire item, divider.");
	var_Items.set_ItemDivider(h,0);
	var_Items.set_CellHAlignment(h,0,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);

351
How can I fix or lock items

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_LockedItemCount(exontrol.EXGANTTLib.VAlignmentEnum.TopAlignment,1);
	var_Items.set_CellCaption(var_Items.get_LockedItem(exontrol.EXGANTTLib.VAlignmentEnum.TopAlignment,0),0,"This is a locked item, fixed to the top side of the control.");
	var_Items.set_ItemBackColor(var_Items.get_LockedItem(exontrol.EXGANTTLib.VAlignmentEnum.TopAlignment,0),Color.FromArgb(196,196,186));
	var_Items.set_LockedItemCount(exontrol.EXGANTTLib.VAlignmentEnum.BottomAlignment,2);
	var_Items.set_CellCaption(var_Items.get_LockedItem(exontrol.EXGANTTLib.VAlignmentEnum.BottomAlignment,0),0,"This is a locked item, fixed to the top side of the control.");
	var_Items.set_ItemBackColor(var_Items.get_LockedItem(exontrol.EXGANTTLib.VAlignmentEnum.BottomAlignment,0),Color.FromArgb(196,196,186));
	var_Items.set_CellCaption(var_Items.get_LockedItem(exontrol.EXGANTTLib.VAlignmentEnum.BottomAlignment,1),0,"This is a locked item, fixed to the top side of the control.");
	var_Items.set_ItemBackColor(var_Items.get_LockedItem(exontrol.EXGANTTLib.VAlignmentEnum.BottomAlignment,1),Color.FromArgb(186,186,186));

350
How can I fix or lock an item on the bottom side of the control

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_LockedItemCount(exontrol.EXGANTTLib.VAlignmentEnum.BottomAlignment,1);
	var_Items.set_CellCaption(var_Items.get_LockedItem(exontrol.EXGANTTLib.VAlignmentEnum.BottomAlignment,0),0,"This is a locked item, fixed to the bottom side of the control.");
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);

349
How can I fix or lock an item on the top of the control

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_LockedItemCount(exontrol.EXGANTTLib.VAlignmentEnum.TopAlignment,1);
	var_Items.set_CellCaption(var_Items.get_LockedItem(exontrol.EXGANTTLib.VAlignmentEnum.TopAlignment,0),0,"This is a locked item, fixed to the top side of the control.");
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);

348
Is there any function to limit the height of the items when I display it using multiple lines

exgantt1.ScrollBySingleLine = true;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines.");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);
	var_Items.set_ItemMaxHeight(h,48);

347
Why I cannot center my cells in the column

exgantt1.TreeColumnIndex = -1;
exgantt1.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exRowLines;
(exgantt1.Columns.Add("Default") as exontrol.EXGANTTLib.Column).Alignment = exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment;
exgantt1.Items.AddItem("item 1");
exgantt1.Items.AddItem("item 2");
exgantt1.Items.AddItem("item 3");

346
How can I align the cell to the left, center or to the right

exgantt1.TreeColumnIndex = -1;
exgantt1.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exRowLines;
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_CellHAlignment(var_Items.AddItem("left"),0,exontrol.EXGANTTLib.AlignmentEnum.LeftAlignment);
	var_Items.set_CellHAlignment(var_Items.AddItem("center"),0,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);
	var_Items.set_CellHAlignment(var_Items.AddItem("right"),0,exontrol.EXGANTTLib.AlignmentEnum.RightAlignment);

345
How do I apply HTML format to a cell

exgantt1.TreeColumnIndex = -1;
exgantt1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exgantt1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif");
exgantt1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif");
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("The following item shows some of the HTML format supported:");
	var_Items.set_CellHAlignment(h,0,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);
	h = var_Items.AddItem("<br>text icons <img>1</img>, <img>2</img>, ... pictures <img>p1</img>, <img>p2</img> <br><br>text <b>bold</b>, <i>italic</i>, <" +
"u>underline</u>, <s>strikeout</s>, ...<br><dotline>and so on...<br> <a>anchor</a> or <a2>hyperlink</a><br><fgcolor=FF0000>fgcolo" +
"r</fgcolor> or <bgcolor=00FF00>bgcolor</bgcolor> ");
	var_Items.set_CellCaptionFormat(h,0,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);
	var_Items.set_CellSingleLine(h,0,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);

344
How can I change the font for a cell

exgantt1.Columns.Add("Default");
exgantt1.Items.AddItem("std font");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_CellCaptionFormat(var_Items.AddItem("this <font tahoma;12>is a bit of text with</font> a different font"),0,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);

343
How can I change the font for a cell

exgantt1.Columns.Add("Default");
exgantt1.Items.AddItem("default font");
stdole.IFontDisp f = new stdole.StdFont();
	f.Name = "Tahoma";
	f.Size = 12;
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_CellFont(var_Items.AddItem("new font"),0,(f as stdole.IFontDisp));

342
How can I change the font for entire item

exgantt1.Columns.Add("Default");
exgantt1.Items.AddItem("default font");
stdole.IFontDisp f = new stdole.StdFont();
	f.Name = "Tahoma";
	f.Size = 12;
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_ItemFont(var_Items.AddItem("new font"),(f as stdole.IFontDisp));

341
How do I vertically align a cell

exgantt1.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exRowLines;
(exgantt1.Columns.Add("MultipleLine") as exontrol.EXGANTTLib.Column).set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellSingleLine,false);
exgantt1.Columns.Add("VAlign");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("This is a bit of long text that should break the line");
	var_Items.set_CellCaption(h,1,"top");
	var_Items.set_CellVAlignment(h,1,exontrol.EXGANTTLib.VAlignmentEnum.TopAlignment);
	h = var_Items.AddItem("This is a bit of long text that should break the line");
	var_Items.set_CellCaption(h,1,"middle");
	var_Items.set_CellVAlignment(h,1,exontrol.EXGANTTLib.VAlignmentEnum.MiddleAlignment);
	h = var_Items.AddItem("This is a bit of long text that should break the line");
	var_Items.set_CellCaption(h,1,"bottom");
	var_Items.set_CellVAlignment(h,1,exontrol.EXGANTTLib.VAlignmentEnum.BottomAlignment);

340
How can I change the position of an item

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.AddItem("Item 1");
	var_Items.AddItem("Item 2");
	var_Items.set_ItemPosition(var_Items.AddItem("Item 3"),0);

339
How do I find an item based on a path

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.set_ItemData(var_Items.InsertItem(h,null,"Child 2"),1234);
	var_Items.set_ExpandItem(h,true);
	var_Items.set_ItemBold(var_Items.get_FindPath("Root 1\\Child 1"),true);

338
How do I find an item based on my extra data

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.set_ItemData(var_Items.InsertItem(h,null,"Child 2"),1234);
	var_Items.set_ExpandItem(h,true);
	var_Items.set_ItemBold(var_Items.get_FindItemData(1234,null),true);

337
How do I find an item

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_ItemBold(var_Items.get_FindItem("Child 2",0,null),true);

336
How can I insert a hyperlink or an anchor element

exgantt1.Columns.Add("Column");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_CellCaptionFormat(var_Items.AddItem("Just an <a1>anchor</a> element ..."),0,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);
exontrol.EXGANTTLib.Items var_Items1 = exgantt1.Items;
	var_Items1.set_CellCaptionFormat(var_Items1.AddItem("Just another <a2>anchor</a> element ..."),0,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);

335
How do I find the index of the item based on its handle

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_ItemBold(var_Items[var_Items.get_ItemToIndex(h)],true);

334
How do I find the handle of the item based on its index

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_ItemBold(var_Items[1],true);

333
How can I find the cell being clicked in a radio group

exgantt1.MarkSearchColumn = false;
exgantt1.SelBackColor = Color.FromArgb(255,255,128);
exgantt1.SelForeColor = Color.FromArgb(0,0,0);
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exgantt1.Columns.Add("C3");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Radio 1");
	var_Items.set_CellHasRadioButton(h,1,true);
	var_Items.set_CellRadioGroup(h,1,1234);
	var_Items.set_CellCaption(h,2,"Radio 2");
	var_Items.set_CellHasRadioButton(h,2,true);
	var_Items.set_CellRadioGroup(h,2,1234);
	var_Items.set_CellState(h,1,1);
	var_Items.set_CellBold(null,var_Items.get_CellChecked(1234),true);

332
Can I add a +/- ( expand / collapse ) buttons to each item, so I can load the child items later

exgantt1.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot;
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_ItemHasChildren(var_Items.AddItem("parent item with no child items"),true);
	var_Items.AddItem("next item");

331
Can I let the user to resize at runtime the specified item

exgantt1.ScrollBySingleLine = true;
exgantt1.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exRowLines;
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_ItemAllowSizing(var_Items.AddItem("resizable item"),true);
	var_Items.AddItem("not resizable item");

330
How can I change the size ( width, height ) of the picture

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.set_CellPicture(h,0,(exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp));
	var_Items.set_CellPictureWidth(h,0,24);
	var_Items.set_CellPictureHeight(h,0,24);
	var_Items.set_ItemHeight(h,32);
	h = var_Items.AddItem("Root 2");
	var_Items.set_CellPicture(h,0,(exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp));
	var_Items.set_ItemHeight(h,48);

329
How can I find the number or the count of selected items

exgantt1.SingleSel = false;
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_SelectItem(var_Items.get_ItemChild(h),true);
	var_Items.set_SelectItem(var_Items.get_NextSiblingItem(var_Items.get_ItemChild(h)),true);
	var_Items.AddItem(var_Items.SelectCount);

328
How do I unselect an item

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_SelectItem(h,false);

327
How do I find the selected item

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_SelectItem(h,true);
	var_Items.set_ItemBold(var_Items.get_SelectedItem(0),true);

326
How do I un select all items

exgantt1.SingleSel = false;
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.UnselectAll();

325
How do I select multiple items

exgantt1.SingleSel = false;
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_SelectItem(var_Items.get_ItemChild(h),true);
	var_Items.set_SelectItem(var_Items.get_NextSiblingItem(var_Items.get_ItemChild(h)),true);

324
How do I select all items

exgantt1.SingleSel = false;
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.SelectAll();

323
How do I select an item

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_SelectItem(h,true);

322
Can I display a button with some picture or icon inside

exgantt1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif");
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1," Button <img>p1</img> ");
	var_Items.set_CellCaptionFormat(h,1,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);
	var_Items.set_CellHAlignment(h,1,exontrol.EXGANTTLib.AlignmentEnum.RightAlignment);
	var_Items.set_CellHasButton(h,1,true);
	var_Items.set_CellButtonAutoWidth(h,1,true);
	var_Items.set_ItemHeight(h,48);

321
Can I display a button with some picture or icon inside

exgantt1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1," Button <img>1</img> ");
	var_Items.set_CellCaptionFormat(h,1,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);
	var_Items.set_CellHAlignment(h,1,exontrol.EXGANTTLib.AlignmentEnum.RightAlignment);
	var_Items.set_CellHasButton(h,1,true);
	var_Items.set_CellButtonAutoWidth(h,1,true);

320
Can I display a button with some icon inside

exgantt1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1," <img>1</img> ");
	var_Items.set_CellCaptionFormat(h,1,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);
	var_Items.set_CellHAlignment(h,1,exontrol.EXGANTTLib.AlignmentEnum.RightAlignment);
	var_Items.set_CellHasButton(h,1,true);
	var_Items.set_CellButtonAutoWidth(h,1,true);

319
How can I assign multiple icon/picture to a cell

exgantt1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif");
exgantt1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif");
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("text <img>p1</img> another picture <img>p2</img> and so on");
	var_Items.set_CellCaptionFormat(h,0,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);
	var_Items.set_CellPicture(h,0,(exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\colorize.gif`)") as stdole.IPictureDisp));
	var_Items.set_ItemHeight(h,48);
	var_Items.AddItem("Root 2");

318
How can I assign an icon/picture to a cell

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.set_CellPicture(h,0,(exgantt1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp));
	var_Items.set_ItemHeight(h,48);
	var_Items.AddItem("Root 2");

317
How can I assign multiple icons/pictures to a cell

exgantt1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root <img>1</img> 1, <img>2</img>, ... and so on ");
	var_Items.set_CellCaptionFormat(h,0,exontrol.EXGANTTLib.CaptionFormatEnum.exHTML);

316
How can I assign multiple icons/pictures to a cell

exgantt1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.set_CellImages(h,0,"1,2,3");

315
How can I assign an icon/picture to a cell

exgantt1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.set_CellImage(h,0,1);
	var_Items.set_CellImage(var_Items.InsertItem(h,null,"Child 1"),0,2);
	var_Items.set_CellImage(var_Items.InsertItem(h,null,"Child 2"),0,3);
	var_Items.set_ExpandItem(h,true);

314
How can I get the handle of an item based on the handle of the cell

exgantt1.Columns.Add("Default");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Root 1");
	var_Items.InsertItem(h,null,"Child 1");
	var_Items.InsertItem(h,null,"Child 2");
	var_Items.set_ExpandItem(h,true);
	var_Items.set_ItemBold(var_Items.get_CellItem(var_Items.get_ItemCell(h,0)),true);

313
How can I display a button inside the item or cell

exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1," Button 1 ");
	var_Items.set_CellHAlignment(h,1,exontrol.EXGANTTLib.AlignmentEnum.RightAlignment);
	var_Items.set_CellHasButton(h,1,true);
	var_Items.set_CellButtonAutoWidth(h,1,true);
	h = var_Items.AddItem("Cell 2");
	var_Items.set_CellCaption(h,1," Button 2 ");
	var_Items.set_CellHAlignment(h,1,exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment);
	var_Items.set_CellHasButton(h,1,true);

312
How can I change the state of a radio button

exgantt1.MarkSearchColumn = false;
exgantt1.SelBackColor = Color.FromArgb(255,255,128);
exgantt1.SelForeColor = Color.FromArgb(0,0,0);
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exgantt1.Columns.Add("C3");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Radio 1");
	var_Items.set_CellHasRadioButton(h,1,true);
	var_Items.set_CellRadioGroup(h,1,1234);
	var_Items.set_CellCaption(h,2,"Radio 2");
	var_Items.set_CellHasRadioButton(h,2,true);
	var_Items.set_CellRadioGroup(h,2,1234);
	var_Items.set_CellState(h,1,1);

311
How can I assign a radio button to a cell

exgantt1.MarkSearchColumn = false;
exgantt1.SelBackColor = Color.FromArgb(255,255,128);
exgantt1.SelForeColor = Color.FromArgb(0,0,0);
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exgantt1.Columns.Add("C3");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Radio 1");
	var_Items.set_CellHasRadioButton(h,1,true);
	var_Items.set_CellRadioGroup(h,1,1234);
	var_Items.set_CellCaption(h,2,"Radio 2");
	var_Items.set_CellHasRadioButton(h,2,true);
	var_Items.set_CellRadioGroup(h,2,1234);
	var_Items.set_CellState(h,1,1);

310
How can I change the state of a checkbox

exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Check Box");
	var_Items.set_CellHasCheckBox(h,1,true);
	var_Items.set_CellState(h,1,1);

309
How can I assign a checkbox to a cell

exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Check Box");
	var_Items.set_CellHasCheckBox(h,1,true);

308
How can I display an item or a cell on multiple lines

exgantt1.ScrollBySingleLine = true;
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines");
	var_Items.set_CellSingleLine(h,1,exontrol.EXGANTTLib.CellSingleLineEnum.exCaptionWordWrap);

307
How can I assign a tooltip to a cell

exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"tooltip");
	var_Items.set_CellToolTip(h,1,"This is bit of text that's shown when the user hovers the cell");

306
How can I associate an extra data to a cell
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Cell 2");
	var_Items.set_CellData(h,1,"your extra data");

305
How do I enable or disable a cell

exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Cell 2");
	var_Items.set_CellEnabled(h,1,false);

304
How do I change the cell's foreground color

exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Cell 2");
	var_Items.set_CellForeColor(h,1,Color.FromArgb(255,0,0));

303
How do I change the visual effect for the cell, using your EBN files

exgantt1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Cell 2");
	var_Items.set_CellBackColor32(h,1,0x1000000);

302
How do I change the cell's background color

exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	int h = var_Items.AddItem("Cell 1");
	var_Items.set_CellCaption(h,1,"Cell 2");
	var_Items.set_CellBackColor(h,1,Color.FromArgb(255,0,0));

301
How do I change the caption or value for a particular cell

exgantt1.Columns.Add("C1");
exgantt1.Columns.Add("C2");
exontrol.EXGANTTLib.Items var_Items = exgantt1.Items;
	var_Items.set_CellCaption(var_Items.AddItem("Cell 1"),1,"Cell 2");